Problem Note 69599: A WHERE clause that contains an AND condition returns incorrect results when the first two arguments of the AND condition are the same
If you use a WHERE clause that contains an AND condition and the first two arguments in the AND condition are identical, an incorrect number of observations might be returned.
The following code example illustrates the issue. After the code executes, multiple observations occur, but the expectation is that one observation should be returned:
data one;
infile datalines truncover;
input x1 $ x2 $;
datalines;
house
house car
house house
;
run;
data two;
set one;
where indexw("house", x1) and indexw("house", x2);
run;
No notes, warnings, or errors are issued in the SAS® log to indicate that an incorrect number of observations has been returned.
Workarounds
There are two workarounds.
The first workaround is to change the WHERE clause to have the following syntax:
where 0 < indexw("house", x1) and 0 < indexw("house", x2);
After you make that change, one observation is returned, as expected.
The second workaround is to substitute an IF statement in place of the WHERE clause. Here is an example:
data two;
set one;
if indexw("house", x1) and indexw("house", x2);
run;
Using an IF statement also returns the correct number of observations, which is one in this scenario.
Operating System and Release Information
SAS System | Base SAS | z/OS | 9.4 TS1M1 | 9.4 TS1M8 |
z/OS 64-bit | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft® Windows® for x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8 Enterprise 32-bit | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8 Enterprise x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8 Pro 32-bit | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8 Pro x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8.1 Enterprise 32-bit | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8.1 Enterprise x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8.1 Pro 32-bit | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 8.1 Pro x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows 10 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2008 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2008 R2 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2008 for x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2012 Datacenter | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2012 R2 Datacenter | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2012 R2 Std | 9.4 TS1M1 | 9.4 TS1M8 |
Microsoft Windows Server 2012 Std | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Enterprise 32 bit | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Enterprise x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Home Premium 32 bit | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Home Premium x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Professional 32 bit | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Professional x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Ultimate 32 bit | 9.4 TS1M1 | 9.4 TS1M8 |
Windows 7 Ultimate x64 | 9.4 TS1M1 | 9.4 TS1M8 |
64-bit Enabled AIX | 9.4 TS1M1 | 9.4 TS1M8 |
64-bit Enabled Solaris | 9.4 TS1M1 | 9.4 TS1M8 |
HP-UX IPF | 9.4 TS1M1 | 9.4 TS1M8 |
Linux for x64 | 9.4 TS1M1 | 9.4 TS1M8 |
Solaris for x64 | 9.4 TS1M1 | 9.4 TS1M8 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | medium |
Topic: | SAS Reference ==> Statements ==> Action ==> WHERE
|
Date Modified: | 2022-10-05 09:05:09 |
Date Created: | 2022-10-04 14:01:57 |